21 lines
471 B
C#
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; }
|
|||
|
|
|||
|
}
|
|||
|
}
|