17 lines
433 B
C#
17 lines
433 B
C#
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<string[]> Data { get; set; }
|
|
}
|
|
} |