Files
moadiran/Shared/DTOs/RCOD.cs
2024-05-08 17:43:41 +03:30

21 lines
471 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class RCOD
{
public int? ID { get; set; }
public string? TaxID { get; set; }
public string Title { get; set; }
public int UnitID { get; set; }
public string? Unit { get; set; }
public int TaxRate { get; set; }
}
}