16 lines
343 B
C#
16 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CR.Atesa.VacacionesModel
|
|
{
|
|
public class Email : UltimusJson
|
|
{
|
|
public string Recipient { get; set; }
|
|
public string Subject { get; set; }
|
|
public string Message { get; set; }
|
|
|
|
}
|
|
}
|