sanAntonioSeniorGolf/website/Models/events/EditEventDescription.cs

6 lines
154 B
C#
Raw Normal View History

2024-04-15 13:34:57 -05:00
namespace website.Models.events {
public class EditEventDescription {
public int? eventId { get; set; }
public string? description { get; set; }
}
}