mirror of
https://github.com/BarkProductions/barkman.git
synced 2026-08-11 11:42:03 +00:00
seperated out start and end date and time into seprate date and time fields
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
using System.Runtime.InteropServices.JavaScript;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace barkmanapi;
|
||||
@@ -53,8 +54,10 @@ public class Jobs
|
||||
public required string Name { get; set; }
|
||||
public JobStatus Status { get; set; }
|
||||
public string? StatusId { get; set; }
|
||||
public DateTimeOffset StartDate { get; set; }
|
||||
public DateTimeOffset EndDate { get; set; }
|
||||
public DateOnly StartDate { get; set; }
|
||||
public DateOnly EndDate { get; set; }
|
||||
public TimeOnly StartTime { get; set; }
|
||||
public TimeOnly EndTime { get; set; }
|
||||
public decimal TotalPrice { get; set; }
|
||||
public string? Venue { get; set; }
|
||||
public string? Address { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user