Skip to content
Snippets Groups Projects
Verified Commit 01f48933 authored by Emilia's avatar Emilia
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
\ No newline at end of file

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Quarkcord", "Quarkcord\Quarkcord.csproj", "{9A0FBEEB-4FC0-4A34-A2EE-CCD53FA96939}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9A0FBEEB-4FC0-4A34-A2EE-CCD53FA96939}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9A0FBEEB-4FC0-4A34-A2EE-CCD53FA96939}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9A0FBEEB-4FC0-4A34-A2EE-CCD53FA96939}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9A0FBEEB-4FC0-4A34-A2EE-CCD53FA96939}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
namespace Quarkcord;
public class HumanReadable
{
}
\ No newline at end of file
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
namespace Quarkcord.Objects;
public class MessagePair
{
[BsonId] public ObjectId Id;
public ulong DiscordId;
public ObjectId LqId;
}
\ No newline at end of file
namespace Quarkcord.Objects;
public class LqUser
{
}
\ No newline at end of file
namespace Quarkcord.Objects;
public class MessagePair
{
}
\ No newline at end of file
using Lightquark.Types;
using Lightquark.Types.EventBus;
namespace Quarkcord;
public class QuarkcordPlugin : IPlugin
{
public void Initialize(IEventBus eventBus)
{
throw new NotImplementedException();
}
}
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
# Quarkcord
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment