dmeo040225/Models/Service.cs

16 lines
299 B
C#
Raw Normal View History

2025-02-04 13:58:34 +00:00
using System;
using System.Collections.Generic;
namespace dmeo040225.Models;
public partial class Service
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public string Code { get; set; } = null!;
public string Cost { get; set; } = null!;
}