c5375b661b
broke data out into its own library. may be breaking changes with existing plugins
12 lines
278 B
C#
12 lines
278 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Stats.Models
|
|
{
|
|
public class AuditFields
|
|
{
|
|
[Required]
|
|
public DateTime CreatedDateTime { get; set; } = DateTime.UtcNow;
|
|
public DateTime? UpdatedDateTime { get; set; }
|
|
}
|
|
} |