...
This commit is contained in:
42
Shared/DTOs/_TaxPayer.cs
Normal file
42
Shared/DTOs/_TaxPayer.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
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; }
|
||||
public List<Filds> Bodys { get; set; }
|
||||
public List<Filds> Payments { get; set; }
|
||||
|
||||
}
|
||||
public class Filds
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public List<Fild> filds { get; set; }
|
||||
}
|
||||
public class Fild
|
||||
{
|
||||
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; }
|
||||
public string[] Des { get; set; }
|
||||
}
|
||||
public class Coding
|
||||
{
|
||||
public string ID { get; set; }
|
||||
public string Name { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user