1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 08:32:50 -05:00

Added revision date to folder and site responses

This commit is contained in:
Kyle Spearrin
2016-05-05 23:39:31 -04:00
parent 9c61cfb5c0
commit 0d92042e28
2 changed files with 4 additions and 0 deletions

View File

@ -15,9 +15,11 @@ namespace Bit.Api.Models
Id = folder.Id;
Name = folder.Name;
RevisionDate = folder.RevisionDate;
}
public string Id { get; set; }
public string Name { get; set; }
public DateTime RevisionDate { get; set; }
}
}