Public Access
15 lines
426 B
C#
15 lines
426 B
C#
namespace MeetingAssistant.MeetingNotes;
|
|
|
|
public static class MeetingArtifactFileNames
|
|
{
|
|
public const string Note = "note";
|
|
public const string Context = "context";
|
|
public const string Transcript = "transcript";
|
|
public const string Summary = "summary";
|
|
|
|
public static string Create(DateTimeOffset startedAt, string artifactType)
|
|
{
|
|
return $"{startedAt:yyyyMMdd-HHmm}-{artifactType}.md";
|
|
}
|
|
}
|