20 lines
397 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace skyscraper8.Skyscraper.Scraper.Storage
{
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
public sealed class StorageIdAttribute : Attribute
{
public int Id { get; }
public StorageIdAttribute(int id)
{
Id = id;
}
}
}