6 lines
154 B
C#
6 lines
154 B
C#
namespace website.Models.events {
|
|
public class EditEventDescription {
|
|
public int? eventId { get; set; }
|
|
public string? description { get; set; }
|
|
}
|
|
} |