mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-01-02 10:43:31 +00:00
10 lines
250 B
C#
10 lines
250 B
C#
using System;
|
|
|
|
namespace Artemis.Storage.Entities.Profile;
|
|
|
|
public class TimelineEntity
|
|
{
|
|
public TimeSpan StartSegmentLength { get; set; }
|
|
public TimeSpan MainSegmentLength { get; set; }
|
|
public TimeSpan EndSegmentLength { get; set; }
|
|
} |