18 lines
400 B
C#
18 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Housewives.Models.Dtos
|
|
{
|
|
public class QuoteDto
|
|
{
|
|
public int Id { get; set; }
|
|
public int HousewifeId { get; set; }
|
|
public string Phrase { get; set; }
|
|
public int Season { get; set; }
|
|
public int Episode { get; set; }
|
|
}
|
|
}
|