17 lines
362 B
C#
17 lines
362 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Shared.DTOs
|
|
{
|
|
public class CsrPrivateKeyDto
|
|
{
|
|
[Required]
|
|
public string cn { get; set; }
|
|
[Required]
|
|
public string sn { get; set; }
|
|
[Required]
|
|
public string company { get; set; }
|
|
[Required]
|
|
public string Mobile { get; set; }
|
|
}
|
|
}
|