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

remove duplicates in an sorted array

  using System; public class HelloWorld {          public static void Main(string[] args)     {         int[] ar={2,2,3,3,4,6,6};          C...