16 lines
299 B
C#
16 lines
299 B
C#
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!;
|
|
}
|