Class Notice
- Namespace
- adas_core.Domain.Models.MongoModels
- Assembly
- adas-core.Domain.dll
Represents a notice, typically used to convey information, alerts, or messages within the application.
public class Notice
- Inheritance
-
Notice
- Inherited Members
- Extension Methods
Properties
Description
public string Description { get; set; }
Property Value
DisplayId
public ObjectId DisplayId { get; set; }
Property Value
- ObjectId
Id
public ObjectId Id { get; set; }
Property Value
- ObjectId
IsFooterEnabled
public bool IsFooterEnabled { get; set; }
Property Value
NoticeDate
public DateTime NoticeDate { get; set; }
Property Value
NoticeType
public string NoticeType { get; set; }
Property Value
StaffInfoList
public List<StaffInfo>? StaffInfoList { get; set; }
Property Value
Methods
ToString()
Returns a string representation of the notice, including the date (only when set), display ID, type, and description.
public override string ToString()