Login.cs 488 B

1234567891011121314151617181920
  1. using System;
  2. namespace InABox.Core
  3. {
  4. [UserTracking(false)]
  5. [Unrecoverable]
  6. public class Login : Entity, IRemotable, IPersistent, ILicense<CoreLicense>
  7. {
  8. public UserLink User { get; set; }
  9. public string StationID { get; set; }
  10. public DateTime TimeStamp { get; set; }
  11. public override string ToString()
  12. {
  13. return $"Login(UserGuid:{User.ID},User:{User.UserID},Station:{StationID},Time:{TimeStamp})";
  14. }
  15. }
  16. }