This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

16 lines
283 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBase.Converters
{
internal class MilliSecondConverter : TimeConverter
{
public MilliSecondConverter() : base(TimeType.MiliSecond)
{
}
}
}