13 lines
330 B
C#
13 lines
330 B
C#
namespace Shared.DTOs
|
|
{
|
|
public class TaxToolsDTO
|
|
{
|
|
public string csr { get; set; }
|
|
public string Base64csr { get; set; }
|
|
public string typecsr { get; set; }
|
|
public string key { get; set; }
|
|
public string Base64key { get; set; }
|
|
public string typekey { get; set; }
|
|
}
|
|
}
|