17 lines
429 B
C#
17 lines
429 B
C#
#nullable enable
|
|
|
|
using System;
|
|
using MySql.Data.Types;
|
|
|
|
namespace website.Models.events {
|
|
public class Event {
|
|
public int? eventId { get; set; }
|
|
public string? location { get; set; }
|
|
public DateTime date { get; set; }
|
|
public TimeSpan? time { get; set; }
|
|
public string? color { get; set; }
|
|
public string? textColor { get; set; }
|
|
public string? imageUri { get; set; }
|
|
public string? description { get; set; }
|
|
}
|
|
} |