Files
moadiran/Shared/DTOs/_TaxPayer.cs

48 lines
1.3 KiB
C#
Raw Normal View History

2024-06-01 12:58:04 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class _TaxPayer
{
public class Atemplatefield
{
public Filds header { get; set; }
2024-06-07 22:07:04 +03:30
public List<Filds> Bodys { get; set; } = new List<Filds>();
public List<Filds> Payments { get; set; }=new List<Filds>();
2024-06-01 12:58:04 +03:30
}
public class Filds
{
public int ID { get; set; }
public List<Fild> filds { get; set; }
}
2024-07-22 22:29:28 +03:30
public class Fild:ICloneable
2024-06-01 12:58:04 +03:30
{
public int FildID { get; set; }
public string fName { get; set; }
public string eName { get; set; }
public int ModeID { get; set; }
public string ModeTitle { get; set; }
public string Title { get; set; }
public string InputBox { get; set; }
public List<Coding> DefVals { get; set; }
public string? Value { get; set; }
2024-06-08 17:13:12 +03:30
public string[]? Des { get; set; }
2024-07-22 22:29:28 +03:30
public object Clone()
{
return this.MemberwiseClone();
}
2024-06-01 12:58:04 +03:30
}
public class Coding
{
public string ID { get; set; }
public string Name { get; set; }
}
}
}