usaquote-api/Models/Quote.cs

7 lines
158 B
C#
Raw Permalink Normal View History

2020-09-21 10:07:48 +00:00
namespace usaquote_api.Models {
public class Quote {
public int ID {get; set;}
public string speaker {get; set;}
public string content {get; set;}
}
}