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:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user