using Common.Dtos.Common; using System; using System.Collections.Generic; using System.Text; namespace Common.Dtos.Subject { public class CreateSubjectResponse : BaseResponse { public string? CreateSubjectResult { get; set; } } }