Public Access
26 lines
612 B
C#
26 lines
612 B
C#
namespace MeetingAssistant.MeetingNotes;
|
|
|
|
public sealed record MeetingNote(
|
|
string Path,
|
|
MeetingNoteFrontmatter Frontmatter,
|
|
string UserNotes);
|
|
|
|
public sealed class MeetingNoteFrontmatter
|
|
{
|
|
public string Title { get; set; } = "";
|
|
|
|
public DateTimeOffset? StartTime { get; set; }
|
|
|
|
public DateTimeOffset? EndTime { get; set; }
|
|
|
|
public List<string> Attendees { get; set; } = [];
|
|
|
|
public List<string> Projects { get; set; } = [];
|
|
|
|
public string Transcript { get; set; } = "";
|
|
|
|
public string AssistantContext { get; set; } = "";
|
|
|
|
public string Summary { get; set; } = "";
|
|
}
|