vgquotes/Src/VideoGameQuotes.Web/Models/CreatePublisherModel.cs

6 lines
161 B
C#
Raw Normal View History

namespace VideoGameQuotes.Web.Models {
public class CreatePublisherModel {
public string Name { get; set; }
public string Website { get; set; }
}
}