using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Karsha_Site.Common.Dto { public class ResultDto { public bool IsSuccess { get; set; } public string Message { get; set; } } public class ResultDto { public bool IsSuccess { get; set; } public string Message { get; set; } public T Data { get; set; } } }