1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-17 00:33:20 +00:00

collection and folder models

This commit is contained in:
Kyle Spearrin
2019-04-15 08:42:50 -04:00
parent eeb28f6ddf
commit 4b67ba027e
4 changed files with 102 additions and 7 deletions

View File

@@ -1,11 +1,20 @@
using System;
using System.Collections.Generic;
using System.Text;
using Bit.Core.Models.Domain;
using System;
namespace Bit.Core.Models.View
{
public class FolderView
public class FolderView : View
{
public FolderView() { }
public FolderView(Folder f)
{
Id = f.Id;
RevisionDate = f.RevisionDate;
}
public string Id { get; set; }
public string Name { get; set; }
public DateTime RevisionDate { get; set; }
}
}