You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Services.cs 214 B

123456789
  1. namespace Bwasm.MudPagingTable.Demo.Models
  2. {
  3. public class Services
  4. {
  5. public int Id { get; set; }
  6. public string ItemName { get; set; }
  7. public bool IsCompleted { get; set; }
  8. }
  9. }