* Fixed login & auth * Added dynamic breadcrumb * Added DOC * Added Patient * Added Notifications * Added Messages * Refactoring api * Re-writed menu * Removed unused things * Created README
19 lines
340 B
C#
19 lines
340 B
C#
using LinqToDB.Mapping;
|
|
using System;
|
|
|
|
namespace SeniorAssistant.Models
|
|
{
|
|
public class Step : IHasTime
|
|
{
|
|
[PrimaryKey]
|
|
[NotNull]
|
|
public string Username { get; set; }
|
|
|
|
[PrimaryKey]
|
|
[NotNull]
|
|
public DateTime Time { get; set; }
|
|
|
|
public long Value { get; set; }
|
|
}
|
|
}
|