Wednesday, 15 November 2023

main class imp

main response call for all api response......   

public class ResponseDto

    {
        public object? Result { getset; }
        public bool IsSuccess { getset; } = true;
        public string Message { getset; } = "";
        public string Status { getset; }
        public int ID { getset; } = 0;
    }

No comments:

Post a Comment

7 Common mistakes in Dot Net — You can avoid

  There are many common mistakes made during .NET (ASP.NET, .NET Core) development, which affect performance, security, and code… Code Crack...