librmo 0.4.4

A library to manage media files and play them
Documentation
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.12.15

use sea_orm::entity::prelude::*;
use serde::Serialize;

#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize)]
#[sea_orm(table_name = "album_group")]
pub struct Model {
    #[sea_orm(primary_key)]
    pub id: i32,
    pub mb_release_group_id: String,
    pub title: String,
    pub release_year: i32,
}

#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
pub enum Relation {}

impl ActiveModelBehavior for ActiveModel {}