using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace webapi.Infrastructure.Model { public class Letter { public string Username { get; set; } public string Email { get; set; } public string Password { get; set; } public string FlatTitle { get; set; } public string Url { get; set; } public List Data { get; set; } } }