10 lines
130 B
C#
10 lines
130 B
C#
|
using System;
|
||
|
|
||
|
namespace app.Model.DTOs
|
||
|
{
|
||
|
public class EMailStringDTO
|
||
|
{
|
||
|
public string EMail { get; set; }
|
||
|
}
|
||
|
}
|