mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
reformatted models
This commit is contained in:
@@ -1,17 +1,18 @@
|
||||
using System;
|
||||
|
||||
|
||||
namespace Model.Appointments {
|
||||
|
||||
public class AppointmentModel {
|
||||
|
||||
[JsonPropertyName("id")]
|
||||
public ulong Id { get; set; }
|
||||
|
||||
[JsonPropertyName("start_at")]
|
||||
public DateTime StartAt { get; set; }
|
||||
|
||||
[JsonPropertyName("end_at")]
|
||||
public DateTime EndAt { get; set; }
|
||||
}
|
||||
namespace CanvasModel.Appointments;
|
||||
|
||||
public class AppointmentModel
|
||||
{
|
||||
|
||||
[JsonPropertyName("id")]
|
||||
public ulong Id { get; set; }
|
||||
|
||||
[JsonPropertyName("start_at")]
|
||||
public DateTime StartAt { get; set; }
|
||||
|
||||
[JsonPropertyName("end_at")]
|
||||
public DateTime EndAt { get; set; }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user