This repository has been archived on 2025-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
superstar/MediaTypes.cs
2025-03-18 11:35:10 +08:00

10 lines
280 B
C#

using System;
namespace DualScreenDemo
{
public static class MediaTypes
{
public static readonly Guid Video = new Guid("73646976-0000-0010-8000-00AA00389B71");
public static readonly Guid Audio = new Guid("73647561-0000-0010-8000-00AA00389B71");
}
}