19 lines
443 B
C#
19 lines
443 B
C#
|
|
using BS.Shared;
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace BeWo.Data.Entities
|
|||
|
|
{
|
|||
|
|
public class TeamFolderRight : BeWoEntityBase
|
|||
|
|
{
|
|||
|
|
public TeamFolderRight()
|
|||
|
|
{
|
|||
|
|
this._Tid = TableID.TeamFolderRight;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public virtual long TeamOid { get; set; }
|
|||
|
|
public virtual long BeWoFolderOid { get; set; }
|
|||
|
|
public virtual bool AllowEdit { get; set; }
|
|||
|
|
public virtual bool AllowView { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|