sanAntonioSeniorGolf/website/Models/events/EditEventLocation.cs

6 lines
148 B
C#
Raw Normal View History

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